This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
~Laura Froponethernivu 19.Jan.04 01:33 PM a Web browser Domino Designer6.0.1 CF1Windows 2000
Hi all
To import some data from an external server I have following scheduled agent, see below. If the agent is run from a local client, it works fine but when I start the agent on the Domino server, it fails (con.ConnectTo method returns FALSE). The ODBC source is registered properly on the both machines of course.
I went through the admin help... but didn't find anything related to...
Any help appreciated!
Thanks for your time
Jindra
-----------------------------
Uselsx "*LSXODBC"
Dim con As New ODBCConnection
Dim msg As String
If Not con.ConnectTo("Server","UserID","Psw") Then << problem here: not connected
Messagebox "Could not connect to Server"
Exit Sub
End If